GetParagraph
Returns a paragraph from all the paragraphs that are in the range.
Syntax
expression.GetParagraph(nPos);
expression
- A variable that represents a ApiRange class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
nPos | Required | Number | The paragraph position in the range. |
Returns
ApiParagraph | null
Example
This example shows how to get a paragraph from all the paragraphs that are in the range.
let doc = Api.GetDocument();
let firstParagraph = doc.GetElement(0);
firstParagraph.AddText("First paragraph");
let secondParagraph = Api.CreateParagraph();
secondParagraph.AddText("Second Paragraph");
doc.Push(secondParagraph);
let range = doc.GetRange(0, 28);
let rangeParagraph = range.GetParagraph(1);
rangeParagraph.SetBold("true");